home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Lightspeed Source Code / hfs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-23  |  11.6 KB  |  311 lines  |  [TEXT/KAHL]

  1. #define int8 char        /* 8-bit integer */
  2. #define int16 short        /* 16-bit integer */
  3. #define int32 long        /* 32-bit integer */
  4.  
  5. typedef char *Ptr;        /* pointer */
  6. typedef Ptr *Handle;        /* handle */
  7. typedef int16 (*ProcPtr)();    /* pointer to procedure returning int16 */
  8. typedef ProcPtr *ProcHandle;    /* handle to procedure returning int16 */
  9.  
  10. #define String(size) struct {unsigned char length; char text[size];}
  11. typedef String(255) Str255;    /* maximum length pascal string */
  12. typedef Str255 *StringPtr;    /* pointer to maximum length pascal string */
  13. typedef StringPtr *StringHandle;    /* handle to maximum length pascal string */
  14.  
  15. typedef int16 OSErr;        /* operating system error code */
  16. typedef int32 OSType;        /* operating system type code */
  17. typedef Ptr QElemPtr;        /* pointer to queue element */
  18.  
  19. #define FCBLen *((int16 *) 0x3f6)    /* MFS == -1, HFS == length of FCB */
  20. #define mfsSigWord 0xd2d7    /* MFS volume signature */
  21. #define hfsSigWord 0x4244    /* HFS volume signature */
  22. #define rootDirID 2        /* HFS root volume directory id */
  23. #define ioDirFlg 0x10        /* catalog node directory flag */
  24.  
  25. typedef struct 
  26.     {
  27.     OSType fdType;        /* file's type */
  28.     OSType fdCreator;    /* file's creator */
  29.     int16 fdFlags;        /* flags */
  30.     int16 fdLocation[2];    /* file's location */
  31.     int16 fdFldr;        /* file's window */
  32.     } FInfo, *FInfoPtr;
  33.  
  34. typedef struct
  35.     {
  36.     QElemPtr qLink;        /* next queue entry */
  37.     int16 qType;        /* queue entry type */
  38.     int16 ioTrap;        /* routine trap */
  39.     Ptr ioCmdAddr;        /* routine address */
  40.     ProcPtr ioCompletion;    /* completion routine */
  41.     OSErr ioResult;        /* result code */
  42.     StringPtr ioNamePtr;    /* name */
  43.     int16 ioVRefNum;    /* reference number */
  44.     int16 ioRefNum;        /* path reference number */
  45.     int8 ioVersNum;        /* version number */
  46.     int8 ioPermssn;        /* read/write permission */
  47.     Ptr ioMisc;        /* miscellaneous */
  48.     Ptr ioBuffer;        /* data buffer */
  49.     int32 ioReqCount;    /* requested number of bytes */
  50.     int32 ioActCount;    /* actual number of bytes */
  51.     int16 ioPosMode;    /* positioning mode and newline */
  52.     int32 ioPosOffset;    /* positioning offset */
  53.     } IOParam, *IOParamPtr;
  54.  
  55. typedef struct
  56.     {
  57.     QElemPtr qLink;        /* next queue entry */
  58.     int16 qType;        /* queue entry type */
  59.     int16 ioTrap;        /* routine trap */
  60.     Ptr ioCmdAddr;        /* routine address */
  61.     ProcPtr ioCompletion;    /* completion routine */
  62.     OSErr ioResult;        /* result code */
  63.     StringPtr ioNamePtr;    /* name */
  64.     int16 ioVRefNum;    /* reference number */
  65.     int16 ioFRefNum;    /* path reference number */
  66.     int8 ioFVersNum;    /* version number */
  67.     int8 filler1;        /* unused */
  68.     int16 ioFDirIndex;    /* sequence number */
  69.     int8 ioFlAttrib;    /* attributes */
  70.     int8 ioFlVersNum;    /* version number */
  71.     FInfo ioFlFndrInfo;    /* finder information */
  72.     int32 ioFlNum;        /* file number */
  73.     int16 ioFlStBlk;    /* first allocation block of data fork */
  74.     int32 ioFlLgLen;    /* logical end-of-file of data fork */
  75.     int32 ioFlPyLen;    /* physical end-of-file of data fork */
  76.     int16 ioFlRStBlk;    /* first allocation block of resource fork */
  77.     int32 ioFlRLgLen;    /* logical end-of-file of resource fork */
  78.     int32 ioFlRPyLen;    /* physical end-of-file of resource fork */
  79.     int32 ioFlCrDat;    /* creation date */
  80.     int32 ioFlMdDat;    /* modification date */
  81.     } FileParam, *FileParamPtr;
  82.  
  83. typedef struct
  84.     {
  85.     QElemPtr qLink;        /* next queue entry */
  86.     int16 qType;        /* queue entry type */
  87.     int16 ioTrap;        /* routine trap */
  88.     Ptr ioCmdAddr;        /* routine address */
  89.     ProcPtr ioCompletion;    /* completion routine */
  90.     OSErr ioResult;        /* result code */
  91.     StringPtr ioNamePtr;    /* name */
  92.     int16 ioVRefNum;    /* reference number */
  93.     int32 filler2;        /* unused */
  94.     int16 ioVolIndex;    /* volume index */
  95.     int32 ioVCrDate;    /* creation time and date */
  96.     int32 ioVLsBkUp;    /* last backup time and date */
  97.     int16 ioVAtrb;        /* attributes */
  98.     int16 ioVNmFls;        /* number of files in directory */
  99.     int16 ioVDirSt;        /* first block of directory */
  100.     int16 ioVBlLn;        /* length of directory in blocks */
  101.     int16 ioVNmAlBlks;    /* number of allocation blocks */
  102.     int32 ioVAlBlkSiz;    /* size of allocation block */
  103.     int32 ioVClpSiz;    /* number of bytes to allocate */
  104.     int16 ioAlBlSt;        /* first allocation block in map */
  105.     int32 ioVNxtFNum;    /* next unused file number */
  106.     int16 ioVFrBlk;        /* number of unused allocation blocks */
  107.     } VolumeParam, *VolumeParamPtr;
  108.  
  109. typedef struct
  110.     {
  111.     QElemPtr qLink;        /* next queue entry */
  112.     int16 qType;        /* queue entry type */
  113.     int16 ioTrap;        /* routine trap */
  114.     Ptr ioCmdAddr;        /* routine address */
  115.     ProcPtr ioCompletion;    /* completion routine */
  116.     OSErr ioResult;        /* result code */
  117.     StringPtr ioNamePtr;    /* name */
  118.     int16 ioVRefNum;    /* reference number */
  119.     int16 ioRefNum;        /* path reference number */
  120.     int16 filler;        /* unused */
  121.     int32 ioFCBIndx;    /* fcb index for _getfcbinfo */
  122.     int32 ioFCBFlNm;    /* file number */
  123.     int16 ioFCBFlags;    /* flags */
  124.     int16 ioFCBStBlk;    /* first allocation block of file */
  125.     int32 ioFCBEOF;        /* logical end-of-file */
  126.     int32 ioFCBPLen;    /* physical end-of-file */
  127.     int32 ioFCBCrPs;    /* mark */
  128.     int16 ioFCBVRefNum;    /* volume reference number */
  129.     int32 ioFCBClpSiz;    /* file clump size */
  130.     int32 ioFCBParID;    /* parent directory id */
  131.     } FCBParam, *FCBParamPtr;
  132.  
  133. typedef struct
  134.     {
  135.     QElemPtr qLink;        /* next queue entry */
  136.     int16 qType;        /* queue entry type */
  137.     int16 ioTrap;        /* routine trap */
  138.     Ptr ioCmdAddr;        /* routine address */
  139.     ProcPtr ioCompletion;    /* completion routine */
  140.     OSErr ioResult;        /* result code */
  141.     StringPtr ioNamePtr;    /* name */
  142.     int16 ioVRefNum;    /* reference number */
  143.     int16 ioRefNum;        /* path reference number */
  144.     int8 ioVersNum;        /* version number */
  145.     int8 ioPermssn;        /* read/write permission */
  146.     Ptr ioMisc;        /* miscellaneous */
  147.     Ptr ioBuffer;        /* data buffer */
  148.     int32 ioReqCount;    /* requested number of bytes */
  149.     int32 ioActCount;    /* actual number of bytes */
  150.     int32 filler;        /* unused */
  151.     int32 ioDirID;        /* directory id */
  152.     } HIOParam, *HIOParamPtr;
  153.  
  154. typedef struct
  155.     {
  156.     QElemPtr qLink;        /* next queue entry */
  157.     int16 qType;        /* queue entry type */
  158.     int16 ioTrap;        /* routine trap */
  159.     Ptr ioCmdAddr;        /* routine address */
  160.     ProcPtr ioCompletion;    /* completion routine */
  161.     OSErr ioResult;        /* result code */
  162.     StringPtr ioNamePtr;    /* name */
  163.     int16 ioVRefNum;    /* reference number */
  164.     int16 ioFRefNum;    /* path reference number */
  165.     int16 filler2;        /* unused */
  166.     int16 ioFDirIndex;    /* sequence number of file */
  167.     int8 ioFlAttrib;    /* attributes */
  168.     int8 filler3;        /* version number */
  169.     FInfo ioFlFndrInfo;    /* finder information */
  170.     int32 ioDirID;        /* directory id */
  171.     int16 ioFlStBlk;    /* first allocation block of data fork */
  172.     int32 ioFlLgLen;    /* logical end-of-file of data fork */
  173.     int32 ioFlPyLen;    /* physical end-of-file of data fork */
  174.     int16 ioFlRStBlk;     /* first allocation block of resource fork */
  175.     int32 ioFlRLgLen;    /* logical end-of-file of resource fork */
  176.     int32 ioFlRPyLen;    /* physical end-of-file of resource fork */
  177.     int32 ioFlCrDat;    /* creation time and date */
  178.     int32 ioFlMdDat;    /* modification time and date */
  179.     } HFileParam, *HFileParamPtr;
  180.  
  181. typedef struct
  182.     {
  183.     QElemPtr qLink;        /* next queue entry */
  184.     int16 qType;        /* queue entry type */
  185.     int16 ioTrap;        /* routine trap */
  186.     Ptr ioCmdAddr;        /* routine address */
  187.     ProcPtr ioCompletion;    /* completion routine */
  188.     OSErr ioResult;        /* result code */
  189.     StringPtr ioNamePtr;    /* name */
  190.     int16 ioVRefNum;    /* reference number */
  191.     int32 filler4;        /* unused */
  192.     int16 ioVolIndex;    /* volume index */
  193.     int32 ioVCrDate;    /* creation time and date */
  194.     int32 ioVLsMod;        /* modification time and date */
  195.     int16 ioVAtrb;        /* attributes */
  196.     int16 ioVNmFls;        /* number of files in directory */
  197.     int16 ioVBitMap;    /* first block of volume bitmap */
  198.     int16 ioVAllocPtr;    /* volume space allocation pointer */
  199.     int16 ioVNmAlBlks;    /* number of allocation blocks */
  200.     int32 ioVAlBlkSiz;    /* size of allocation block */
  201.     int32 ioVClpSiz;    /* default clump size */
  202.     int16 ioAlBlSt;        /* first block in block map */
  203.     int32 ioVNxtFNum;    /* next free node id */
  204.     int16 ioVFrBlk;        /* number of unused allocation blocks */
  205.     int16 ioVSigWord;    /* volume signature */
  206.     int16 ioVDrvInfo;    /* drive number */
  207.     int16 ioVDRefNum;    /* driver reference number */
  208.     int16 ioVFSID;        /* file system identifier */
  209.     int32 ioVBkUp;        /* last backup time and date */
  210.     int16 ioVSeqNum;    /* sequence number in backup set */
  211.     int32 ioVWrCnt;        /* volume write count */
  212.     int32 ioVFilCnt;    /* number of files on volume */
  213.     int32 ioVDirCnt;    /* number of directories on volume */
  214.     int32 ioVFndrInfo[8];    /* finder information */
  215.     } HVolumeParam, *HVolumeParamPtr;
  216.  
  217. typedef struct
  218.     {
  219.     QElemPtr qLink;        /* next queue entry */
  220.     int16 qType;        /* queue entry type */
  221.     int16 ioTrap;        /* routine trap */
  222.     Ptr ioCmdAddr;        /* routine address */
  223.     ProcPtr ioCompletion;    /* completion routine */
  224.     OSErr ioResult;        /* result code */
  225.     StringPtr ioNamePtr;    /* name */
  226.     int16 ioVRefNum;    /* reference number */
  227.     int16 ioFRefNum;    /* file reference number */
  228.     int16 filler1;        /* unused */
  229.     int16 ioFDirIndex;    /* file directory index */
  230.     int8 ioFlAttrib;    /* attributes */
  231.     int8 filler2;        /* unused */
  232.     FInfo ioFlFndrInfo;    /* finder information */
  233.     int32 ioFlNum;        /* file number */
  234.     int16 ioFlStBlk;    /* first allocation block of data fork */
  235.     int32 ioFlLgLen;    /* logical end-of-file of data fork */
  236.     int32 ioFlPyLen;    /* physical end-of-file of data fork */
  237.     int16 ioFlRStBlk;     /* first allocation block of resource fork */
  238.     int32 ioFlRLgLen;     /* logical end-of-file of resource fork */
  239.     int32 ioFlRPyLen;     /* physical end-of-file of resource fork */
  240.     int32 ioFlCrDat;    /* creation time and date */
  241.     int32 ioFlMdDat;    /* modification time and date */
  242.     int32 ioFlBkDat;    /* last backup time and date */
  243.     FInfo ioFlXFndrInfo;    /* additional finder information */
  244.     int32 ioFlParID;    /* parent directory id */
  245.     int32 ioFlClpSiz;    /* file's clump size */
  246.     } HFileInfoParam, *HFileInfoParamPtr;
  247.  
  248. typedef struct
  249.     {
  250.     QElemPtr qLink;    /* next queue entry */
  251.     int16 qType;        /* queue entry type */
  252.     int16 ioTrap;        /* routine trap */
  253.     Ptr ioCmdAddr;        /* routine address */
  254.     ProcPtr ioCompletion;    /* completion routine */
  255.     OSErr ioResult;        /* result code */
  256.     StringPtr ioNamePtr;    /* name */
  257.     int16 ioVRefNum;    /* reference number */
  258.     int16 ioFRefNum;    /* file reference number */
  259.     int16 filler1;        /* unused */
  260.     int16 ioFDirIndex;    /* file directory index */
  261.     int8 ioFlAttrib;    /* attributes */
  262.     int8 filler2;        /* unused */
  263.     int16 ioDrUsrWds[8];    /* directory's user info */
  264.     int32 ioDrDirID;    /* directory id */
  265.     int16 ioDrNmFls;    /* number of files in directory */
  266.     int16 filler3[9];    /* unused */
  267.     int32 ioDrCrDat;    /* creation time and date */
  268.     int32 ioDrMdDat;    /* modification time and date */
  269.     int32 ioDrBkDat;    /* last backup time and date */
  270.     int16 ioDrFndrInfo[8];    /* finder information */
  271.     int32 ioDrParID;    /* parent id */
  272.     int32 filler4;        /* unused */
  273.     } DirInfoParam, *DirInfoParamPtr;
  274.  
  275. typedef struct
  276.     {
  277.     QElemPtr qLink;        /* next queue entry */
  278.     int16 qType;        /* queue entry type */
  279.     int16 ioTrap;        /* routine trap */
  280.     Ptr ioCmdAddr;        /* routine address */
  281.     ProcPtr ioCompletion;    /* completion routine */
  282.     OSErr ioResult;        /* result code */
  283.     StringPtr ioNamePtr;    /* name */
  284.     int16 ioVRefNum;    /* reference number */
  285.     int32 filler1;        /* unused */
  286.     StringPtr ioNewName;    /* new name */
  287.     int32 filler2;        /* unused */
  288.     int32 ioNewDirID;    /* new directory id */
  289.     int32 filler3[2];    /* unused */
  290.     int32 ioDirID;        /* directory id */
  291.     } CMoveParam, *CMoveParamPtr;
  292.  
  293. typedef struct
  294.     {
  295.     QElemPtr qLink;        /* next queue entry */
  296.     int16 qType;        /* queue entry type */
  297.     int16 ioTrap;        /* routine trap */
  298.     Ptr ioCmdAddr;        /* routine address */
  299.     ProcPtr ioCompletion;    /* completion routine */
  300.     OSErr ioResult;        /* result code */
  301.     StringPtr ioNamePtr;    /* name */
  302.     int16 ioVRefNum;    /* reference number */
  303.     int16 filler1;        /* unused */
  304.     int16 ioWDIndex;    /* working directory index */
  305.     int32 ioWDProcID;    /* working directory's id */
  306.     int16 ioWDVRefNum;    /* working directory's volume reference number */
  307.     int16 filler2[7];    /* unused */
  308.     int32 ioWDDirID;    /* working directory's directory id */
  309.     } WDParam, *WDParamPtr;
  310.  
  311.